home *** CD-ROM | disk | FTP | other *** search
/ Champak 48 / cdrom_image.iso / Games / babychute.swf / scripts / DefineButton2_195 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2007-09-27  |  263 b   |  13 lines

  1. on(release){
  2.    _root.gotoAndPlay("countdown");
  3.    _root.xyloSnd.start();
  4.    _root.endresult.onEnterFrame = function()
  5.    {
  6.       this._x += (750 - this._x) / 5;
  7.       if(this._x >= 749)
  8.       {
  9.          this.onEnterFrame = undefined;
  10.       }
  11.    };
  12. }
  13.